home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / utility / sccan.zip / SCAN.DPR < prev    next >
Text File  |  1996-07-05  |  322b  |  17 lines

  1. program Scan;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Main},
  6.   Unit2 in 'UNIT2.PAS' {ScanHelp},
  7.   Unit3 in 'UNIT3.PAS' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TMain, Main);
  13.   Application.CreateForm(TScanHelp, ScanHelp);
  14.   Application.CreateForm(TAboutBox, AboutBox);
  15.   Application.Run;
  16. end.
  17.